home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist6.3 / gl_dev.idb / usr / share / src / OpenGL / demos / stonehenge / Roundwall.h.z / Roundwall.h
Encoding:
C/C++ Source or Header  |  1996-12-06  |  296 b   |  25 lines

  1. #ifndef ROUNDWALL_H
  2. #define ROUNDWALL_H
  3.  
  4. class Roundwall {
  5.  public:
  6.   Roundwall();
  7.   ~Roundwall() {};
  8.   
  9.   void draw();
  10.   
  11.   void set_divisions(int d);
  12.  
  13.   float height;
  14.   float radius;
  15.  
  16.  private:
  17.   int divisions;
  18.   float *sint, *cost;
  19.  
  20.   void delete_tables();
  21.   void compute_tables();
  22. };
  23.  
  24. #endif
  25.